Skip to main content
Version: 1.0.2

Withdraw

Withdraw instructed amount from the specified account.

Method: POST

{{URL}}/jsonrpc

Headers

NameValue
Content-Typeapplication/json

Example

Payload Parameters
String

Example: bizpay

ParameterDescription
Type

Mandatory

Enum

Valid Values:

  • REMITTANCE
  • CARDPAY
  • INTERNAL_TRANSFER
  • WITHDRAW
  • DEPOSIT
  • ADMIN_DEPOSIT
Mode

Required only for WITHDRAW, DEPOSIT payment type

Enum

Valid Values:

  • ACH
  • PG
  • QRCODE
  • EFT
  • TELLER
  • BENEFIT
  • CHEQUE
ReferenceId

Mandatory

Example: REF0000000002
TimeStampString

Example: 2020-04-22T07:44:55-05:00

Product

Mandatory

Program

Mandatory

String

Example: PL

InstructedAmount

Mandatory

  • Amount: Number

    Mandatory

    In Smallest Currency Unit

    Example: 7

  • Currency: String

    Mandatory

    Example: USD

FeeAmount
  • Amount: Number

    Mandatory

    In Smallest Currency Unit

    Example: 7

  • Currency: String

    Mandatory

    Example: USD

TaxAmount
  • Amount: Number

    Mandatory

    In Smallest Currency Unit

    Example: 1

  • Currency: String

    Mandatory

    Example: USD

DebtorAccount
  • AccountNumber: String

    Example: 98652221851

    Required only for ACH payment mode

  • InstitutionId: String

    Example: 101115302

  • Reference: String

    Example: txn000013

    Required only for PG, QRCODE, EFT, TELLER, BENEFIT, CHEQUE payment mode

  • Party:
    • AccountVerificationId: String

      Example: 5e9f246bd6571f2280d3d7b4

    • KycId: String

      Example: 5e9f1696d6571f272c5bcc0f

CreditorAccountCreditorAccountDeposit
MFP
  • IP: String

    Example: 10.3.254.143

  • WebBrowser: String

    Example: chrome

  • OperatingSystem: String

    Example: win

  • Latitude: String

    Example: 12.9703498

  • Longitude: String

    Example: 18.1561478

  • Model: String

    Example: HRA-001

  • Locality: String

    Example: Kansas

  • PostalCode: String

    Example: 50021


curl --location --globoff '{{URL}}/jsonrpc' \
--header 'Content-Type: application/json' \
--data '{
"method": "CustomerService.AddUserKey",
"id": "1",
"params": {
"api": {
"signature": "{{signature}}",
"keyId": "67028",
"credential": "Basic Key"
},
"payload": {
"Type": "TABIIBCARD_ISSUE",
"ReferenceId": "XXXPG220527133927030636",
"TimeStamp": "2022-05-27T13:39:28.268Z",
"Product": "XXXPAY",
"Program": "XXXPAY",
"InstructedAmount": {
"Amount": 6000,
"Currency": "USD"
},
"DebtorAccount": {
"AccountNumber": "200286693307123",
"IdentificationType": "WALLET"
},
"CreditorAccount": {
"AccountNumber": "200750038511414",
"IdentificationType": "WALLET"
}
}
}'

Body


{
"method": "TransactionService.Payment",
"id": "1",
"params": {
"api": {
"signature": "{{signature}}",
"keyId": "6003",
"credential": "Basic Key"
},
"payload": {
"Type": "WITHDRAW",
"Mode": "TELLER",
"ReferenceId": "234235353493",
"TimeStamp": "2021-02-16T07:44:55-05:00",
"Product": "LEDGER",
"Program": "100000000000005",
"InstructedAmount": {
"Amount": 100,
"Currency": "USD"
},
"CreditorAccount": {
"reference": "txn000013"
},
"DebtorAccount": {
"AccountNumber": "200524894086671",
"InstitutionId": "101115302"
}
}
}
}

Response: 200


{
"id": "1",
"result": {
"status": "COMPLETED",
"timeStamp": "2021-02-16T07:44:55-0500",
"TransactionID": "81241",
"transactionNumber": "QA00000000010056",
"referenceID": "234235353493",
"processID": "PL23050300010051",
"transactionAmount": 100
}
}